Ash
A very lightweight wrapper around Vulkan
Overview
- A true Vulkan API without compromises
- Convenience features without limiting functionality
- Additional type safety
- Device local function pointer loading
- No validation, everything is unsafe
- Generated from
vk.xml
- Support for Vulkan
1.1
,1.2
,1.3
⚠️ Semver compatibility warning
The Vulkan Video bindings are experimental and still seeing breaking changes in their upstream specification, and are only provided by Ash for early adopters. All related functions and types are semver-exempt [^1] (we allow breaking API changes while releasing Ash with non-breaking semver bumps).
[^1]: generator
complexity makes it so that we cannot easily hide these bindings behind a non-default
feature flag, and they are widespread across the generated codebase.
Features
Explicit returns with Result
// function signature
let instance = entry.create_instance
.expect;
Vec<T>
instead of mutable slices
;
let present_images = swapchain_loader.get_swapchain_images_khr.unwrap;
Note: Functions don't return Vec<T>
if this would limit the functionality. See p_next
.
Slices
;
Strongly typed handles
Each Vulkan handle type is exposed as a newtyped struct for improved type safety. Null handles can be constructed with
T::null()
, and handles may be freely converted to and from u64
with Handle::from_raw
and Handle::as_raw
for
interop with non-Ash Vulkan code.
Default implementation for all types
// No need to manually set the structure type
let desc_alloc_info = DescriptorSetAllocateInfo ;
Builder pattern
// We lose all lifetime information when we call `.build()`. Be careful!
let queue_info = ;
// We don't need to call `.build()` here because builders implement `Deref`.
let device_create_info = builder
.queue_create_infos
.enabled_extension_names
.enabled_features;
let device: Device = instance
.create_device
.unwrap;
To not lose this lifetime single items can be "cast" to a slice of length one with std::slice::from_ref
while still taking advantage of Deref
:
let queue_info = builder
.queue_family_index
.queue_priorities;
let device_create_info = builder
.queue_create_infos
...;
Builders have an explicit lifetime, and are marked as #[repr(transparent)]
.
Every reference has to live as long as the builder itself. Builders implement Deref
targeting their corresponding Vulkan struct, so references to builders can be passed directly
to Vulkan functions.
Calling .build()
will discard that lifetime because Vulkan structs use raw pointers internally. This should be avoided as much as possible because this can easily lead to dangling pointers. If .build()
has to be called, it should be called as late as possible. Lifetimes of temporaries are extended to the enclosing statement, ensuring they are valid for the duration of a Vulkan call occurring in the same statement.
Pointer chains
let mut variable_pointers = builder;
let mut corner =
builder;
;
let mut device_create_info = builder
.push_next
.push_next;
Pointer chains in builders differ from raw Vulkan. Instead of chaining every struct manually, you instead use .push_next
on the struct that you are going to pass into the function. Those structs then get prepended into the chain.
push_next
is also type checked, you can only add valid structs to the chain. Both the structs and the builders can be passed into push_next
. Only builders for structs that can be passed into functions will implement a push_next
.
Flags and constants as associated constants
// Bitflag
COLOR_ATTACHMENT_READ | COLOR_ATTACHMENT_WRITE
// Constant
GRAPHICS,
Debug/Display for Flags
let flag = COLOR_ATTACHMENT_READ
| COLOR_ATTACHMENT_WRITE;
println!;
println!;
// Prints:
// Debug: AccessFlags(110000000)
// Display: COLOR_ATTACHMENT_READ | COLOR_ATTACHMENT_WRITE
Function pointer loading
Ash also takes care of loading the function pointers. Function pointers are split into 3 categories.
- Entry: Loads the Vulkan library. Needs to outlive
Instance
andDevice
. - Instance: Loads instance level functions. Needs to outlive the
Device
s it has created. - Device: Loads device local functions.
The loader is just one possible implementation:
- Device level functions are retrieved on a per device basis.
- Everything is loaded by default, functions that failed to load are initialized to a function that always panics.
- Do not call Vulkan 1.1 functions if you have created a 1.0 instance. Doing so will result in a panic.
Custom loaders can be implemented.
Extension loading
Additionally, every Vulkan extension has to be loaded explicitly. You can find all extensions under ash::extensions.
use Swapchain;
let swapchain_loader = new;
let swapchain = swapchain_loader.create_swapchain.unwrap;
Raw function pointers
Raw function pointers are available, if something hasn't been exposed yet in the higher level API. Please open an issue if anything is missing.
device.fp_v1_0.destroy_device;
Support for extension names
use ;
Implicit handles
Handles from Instance or Device are passed implicitly.
;
let pool = device.create_command_pool.unwrap;
Optional linking
The default loaded
cargo feature will dynamically load the default Vulkan library for the current platform with Entry::load
, meaning that the build environment does not have to have Vulkan development packages installed.
If, on the other hand, your application cannot handle Vulkan being missing at runtime, you can instead enable the linked
feature, which will link your binary with the Vulkan loader directly and expose the infallible Entry::linked
.
Example
You can find the examples here.
All examples currently require: the LunarG Validation layers and a Vulkan library that is visible in your PATH
. An easy way to get started is to use the LunarG Vulkan SDK
Windows
Make sure that you have a Vulkan ready driver and install the LunarG Vulkan SDK.
Linux
Make sure that you have a Vulkan ready driver and install the LunarG Vulkan SDK. You also have to add the library and layers to your path. Have a look at my post if you are unsure how to do that.
macOS
Install the LunarG Vulkan SDK. The installer puts the SDK in $HOME/VulkanSDK/<version>
by default. You will need to set the following environment variables when running cargo:
VULKAN_SDK= /VulkanSDK/<version>/macOS \
DYLD_FALLBACK_LIBRARY_PATH= /lib\
VK_ICD_FILENAMES= /share/vulkan/icd.d/MoltenVK_icd.json\
VK_LAYER_PATH= /share/vulkan/explicit_layer.d\
Triangle
Displays a triangle with vertex colors.
cd examples
cargo run --bin triangle
Texture
Displays a texture on a quad.
cd examples
cargo run --bin texture
Useful resources
Examples
- vulkan-tutorial-rust - A port of vulkan-tutorial.com.
- ash-sample-progression - A port of the LunarG examples.
- ash-nv-rt A raytracing example for ash.
Utility libraries
- vk-sync - Simplified Vulkan synchronization logic, written in rust.
- vk-mem-rs - This crate provides an FFI layer and idiomatic rust wrappers for the excellent AMD Vulkan Memory Allocator (VMA) C/C++ library.
- gpu-allocator - Memory allocator written in pure Rust for GPU memory in Vulkan and in the future DirectX 12
- lahar - Tools for asynchronously uploading data to a Vulkan device.
Libraries that use ash
- gfx-rs - gfx-rs is a low-level, cross-platform graphics abstraction library in Rust.